home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Linux Cubed Series 4: GNU Archives
/
Linux Cubed Series 4 - GNU Archives.iso
/
gnu
/
automake.0
/
automake
/
automake-1.0
/
tests
/
mkinstall.test
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1996-05-15
|
343 b
|
17 lines
#! /bin/sh
# Test for bug where mkinstalldirs variable can be set incorrectly.
. $srcdir/defs || exit 1
cat > Makefile.am << 'END'
pkgdata_DATA =
END
# The "././" prefix confuses Automake into thinking it is doing a
# subdir build. Yes, this is hacky.
$AUTOMAKE ././Makefile || exit 1
grep ' /mkinstalldirs' Makefile.in && exit 1
exit 0